home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
361_01
/
getldate.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-18
|
428b
|
22 lines
/* GetLongDate --> Taken from CUG-273 */
#include <stdek.h>
#include <gadgets.h>
#include <dos.h>
#include <stdio.h>
#include <stdlib.h>
long int GetLongDate(void)
/* Return: The current date in the format YYMMDD. */
{
struct date today;
char Text[40];
getdate(&today);
sprintf(Text, "%2.2d%2.2d%2.2d", today.da_year - 1900,
today.da_mon, today.da_day);
return atol(Text);
}